Axodotdev, operating from its GitHub home, focuses on one thing only: turning Rust codebases into polished, shippable artifacts. The single tool it maintains, dist, is a CLI utility that replaces the brittle chain of manual building, archiving and uploading with a single, declarative workflow. Developers describe desired targets—Windows MSI, macOS PKG, Linux AppImage, Debian or Homebrew bottles—in a TOML file, and dist orchestrates cross-compilation, code-signing, checksum generation and GitHub Release creation from any CI provider. Typical use cases range from solo maintainers who want nightly builds without maintaining custom scripts, to Rust-centric startups that need signed installers for every pull-request merge, to enterprise teams that must ship multi-platform binaries in regulated environments where reproducibility and SBOMs are audited. Because dist re-uses the Cargo ecosystem’s metadata, version alignment and dependency licensing are automated, while optional support for npm-style tarballs and container layers lets the same pipeline feed package managers and Docker registries. The resulting artifacts are cache-friendly, delta-update aware and ready for winget, Homebrew, APT or any internal artifact store, eliminating the historical gap between “it compiles” and “users can double-click to install.” Axodotdev’s software is available for free on get.nero.com, where downloads are supplied through trusted Windows package sources such as winget, always fetch the latest release and can be installed individually or in unattended batch sets.
📦 shippable application packaging
Details